home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GAMES / CHEAT / CheatMake / !CheatMake / Resources / Docs / ChtMkScrpt < prev    next >
Text File  |  1995-09-11  |  1KB  |  48 lines

  1. Description of a CheatMaker Script cheat file
  2. © 1995 by Christian Kohlschütter
  3.  
  4. This format is provided to read cheat information by users and
  5. to store cheat information for later use with wimp-task-based games.
  6.  
  7. This format is line-oriented, lines are terminated by LF (10).
  8.  
  9. CheatMaker Script (Header)
  10. 100 (Version no.)
  11. GAME <name of game, if WIMP=1 name of wimp task>
  12. FIND <name of finder>
  13. HELP <help text, if any>
  14. BASE [0-2] 0: Program is the actual program (default)
  15.            1: Program is a wimp task
  16.            2: Program is a module
  17.            other values are reserved
  18.  
  19. <0-9,A-Z>: <Cheat name>
  20. (if cheat is always active:) ALWAYS (else: ONLYIF ...., see below)
  21. <command> <W/B> &<hex address> <value> (see below)
  22.  
  23. Every cheat is terminated by an empty line.
  24.  
  25.  
  26. ONLYIF:
  27. ONLYIF W &0000A000 4567
  28. only executes the cheat if Word at &A000 is 4567
  29.  
  30. ONLYIF B &0000C000 32
  31. only executes the cheat if Byte at &C000 is 32
  32.  
  33.  
  34. Cheat-commands:
  35. First three chars are the command:
  36. SET
  37. ADD
  38. SUB
  39. OR (filled up to 3 letters with a space)
  40. AND
  41. EOR
  42.  
  43. SET W &00009000 -32768
  44. sets word at &9000 to &ffff8000 (or -32768)
  45.  
  46. EOR B &001A0E66 129
  47. exclusive-ORs contents of byte at &1a0e66 with 129
  48.